home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 081 / omam_112.arc / SETUP.DOC < prev    next >
Text File  |  1987-12-06  |  3KB  |  72 lines

  1.  
  2. Please read RASMAM.DOC.  Use it and this file as guides to setting
  3. up RASMAM.  This document outlines the steps require to set up and
  4. execute a simple script.
  5.  
  6.   o Edit or create your echo control file to include all the
  7.     message areas you wish to process with RASMAM.  The echo
  8.     control file is described in the Opus documentation.  It's
  9.     okay to list message areas in your echo control file that
  10.     aren't echomail areas -- just don't list any FidoNet
  11.     addresses in the line that declares the message area.
  12.  
  13.     As an example, here's a part of my ECHO.CTL file:
  14.  
  15.       1 d:\opus\messages\general GENERAL 18/16
  16.       2 d:\opus\messages\jax JAX 112/5
  17.       3 d:\opus\messages\comment COMMENT
  18.       4 d:\opus\messages\private PRIVATE
  19.       5 d:\opus\messages\bbs BBS 18/16
  20.       6 d:\opus\messages\forsale SALE
  21.       7 d:\opus\messages\anon ANON
  22.       10 d:\opus\messages\net NET
  23.     
  24.     Note: The lines must start in the first column.  Don't put extra
  25.     spaces in the lines.  Also, Opus expects your echo control file
  26.     to be in the same directory as your nodelist (as specified by the
  27.     "PATH NETINFO" statement in your Opus control file).
  28.  
  29.   o Create a RASMAM script.  If you just want to create message
  30.     waiting lists, you need to have the following in the script:
  31.  
  32.       ; Be sure to give the complete path to your user file
  33.       FILE USER c:\opus\user.bbs
  34.       ; The FILE ECHO statement points to your echo control file
  35.       FILE ECHO c:\opus\nodelist\echo.ctl
  36.  
  37.       ; PATH CUSTOM tells MAM where to put custom welcomes
  38.       ; In most cases this should be your Opus subdirectory
  39.       PATH CUSTOM c:\opus
  40.  
  41.       ; FILE HEADER tells RASMAM the name of a file for Opus to
  42.       ; display before the list of waiting messages.
  43.       FILE HEADER c:\opus\misc\rasmam.hdr
  44.  
  45.       ; The FORMAT command tells MAM what format to use for the list
  46.       ; (See SAMPLE.MAM)
  47.       FORMAT C
  48.  
  49.       ; Now for each area you wish to process, set up an AREA block
  50.       ; with the WAIT command:
  51.  
  52.       ; The name after AREA is the echomail name from your echo
  53.       ; control file -- not the path to the message area.
  54.       AREA general
  55.         WAIT
  56.         ;other commands like KILL and RENUM may be entered here
  57.       END AREA
  58.  
  59.       ; Repeat the AREA/END AREA sequence for each message area
  60.       ; that you wish to check.
  61.  
  62.       ; At the end of your script. use the FILE TRAILER statement to
  63.       ; add text after all the lists of messages waiting.
  64.       FILE TRAILER c:\opus\misc\rasmam.trl
  65.  
  66.   o Execute your script by entering the following command from
  67.     DOS:
  68.  
  69.           RASMAM script /LIST
  70.  
  71.     where script is the name of your script file.
  72.